home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Languages / Sesame C Compiler / stdio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-28  |  644 b   |  20 lines  |  [TEXT/TWDA]

  1. /*                     */
  2. /*  I/O definitions    */
  3. /*                     */
  4.  
  5. #define stdin 1
  6. #define stdout 2
  7. #define stderr 3
  8.  
  9. #define printf _printf         /* You may be wondering about these */
  10. #define sprintf _sprintf       /* redefinitions of the standard C routines. */
  11. #define fprintf _fprintf       /* This is necessary for passing variable */
  12.                                /* numbers of parameters to these functions. */
  13. #define scanf _scanf           /* To find out how it works, you need to send */
  14. #define sscanf _sscanf         /* for the documentation */
  15. #define fscanf _fscanf
  16.  
  17. #define FILE int
  18. #define EOF -1
  19. #define NULL 0
  20.